home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / program / gtld3656.lha / GadUtil / Docs / AutoDocs / 09.GU_FreeInput < prev    next >
Text File  |  1995-06-16  |  598b  |  30 lines

  1. gadutil.library/GU_FreeInput                     gadutil.library/GU_FreeInput
  2.  
  3.    NAME
  4.     GU_FreeInput -- Unblock input to a blocked window.
  5.  
  6.    SYNOPSIS
  7.     GU_FreeInput(window)
  8.                  A0
  9.  
  10.     VOID GU_FreeInput(struct Window *);
  11.  
  12.    FUNCTION
  13.     Unblock a window's user input. Call this function after blocking
  14.     the input with GU_BlockInput().
  15.  
  16.    INPUTS
  17.     window - the window that was blocked with GU_BlockInput().
  18.  
  19.    EXAMPLE
  20.  
  21.     BlockInput(myWin);
  22.     About();
  23.     FreeInput();
  24.  
  25.     Will block the parent window for user input while displaying the
  26.     About requester of a program.
  27.  
  28.    SEE ALSO
  29.     GU_BlockInput()
  30.